blob: fd8ebfbd210366ccd491da34292fc7f533e8249e (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
|
post_install() {
groupadd sixad &> /dev/null
chown -R root:sixad /var/lib/sixad/
chmod 775 -R /var/lib/sixad/
echo "You may need to add your user in sixad's group in order to use QTSixa"
}
post_upgrade() {
groupadd sixad &> /dev/null
chown -R root:sixad /var/lib/sixad/
chmod 775 -R /var/lib/sixad/
echo "You may need to add your user in sixad's group in order to use QTSixa"
}
|